home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / help / rcond < prev    next >
Text File  |  1994-04-25  |  547b  |  26 lines

  1. rcond:
  2.  
  3. Syntax:    cond( A )
  4.  
  5. Description:    
  6.  
  7.     Rcond computes an estimate of the condition number of the
  8.     input matrix. rcond() uses the LAPACK routines DGECON, or
  9.     ZGECON.
  10.  
  11.     Probably the most published way to compute the condition of a
  12.     matrix is:
  13.  
  14.     Kcond = ||A|| * ||inv(A)||
  15.  
  16.     Another method is to use the 1st and last singular values of
  17.     A:
  18.  
  19.     Kcond = sigma(1)/sigma(n)
  20.  
  21.     cond() computes an ESTIMATE of the condition number without
  22.     computing all of the columns of inv(A). For more information
  23.     see the LAPACK User's Guide.
  24.  
  25. See Also  inv, det, lu
  26.